*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer{
    width: 100%;
    height: 300px;
    background: rgb(0, 0, 0);
    /* box-shadow: 0px -7px 3px -7px #fafafa;  */
    box-shadow: 1px 1px 10px rgba(0,0,0,0.1);
    z-index: 9999;
}
.footer-container{
    width: 1200px;
    height: 300px;
    background-color: #000000;
    margin: 0 auto;
    position: relative;
    z-index: 9999;
}

/* logo区域 */
.footer-logo{
    width: 260px;
    height: 100px;
    position: absolute;
    z-index: 6;
    top: 15%;
    left: 10%;
    /* border: 1px solid red; */
}

.footer-logo img{
    position: absolute;
    top: -90%;
    left: -15%;
}

/* 内容区域 */
.footer-content{
    width: 700px;
    height: 200px;
    /* background-color: chartreuse; */
    position: absolute;
    top: 15%;
    right: 10%;
    float: left;
    
}

/* 菜单 */
.footer-content-1{
    width: 100px;
    height: 160px;
    /* background-color: gray; */
    position: absolute;
    top: 0;
    left: 10px;
    
}

.footer-content-2{
    width: 100px;
    height: 160px;
    /* background-color: gray; */
    position: absolute;
    top: 0;
    left: 120px;
}

.footer-content-3{
    width: 100px;
    height: 160px;
    /* background-color: gray; */
    position: absolute;
    top: 0;
    left: 230px;
}

.footer-content-4{
    width: 100px;
    height: 160px;
    /* background-color: gray; */
    position: absolute;
    top: 0;
    left: 340px;
}

.footer-content-5{
    width: 100px;
    height: 160px;
    /* background-color: gray; */
    position: absolute;
    top: 0;
    left: 450px;
}

.footer-content ul li{
    text-align: center;
}

.footer-content ul li a:not(.first){
    font-size: 12px;
}
.footer-content ul li a{
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #e6e6e6;
    font-family: 宋体;
    font-size: 14px;
    font-weight: bold;
}

.footer-content ul li a:hover{
    text-decoration: underline;
    text-decoration-color: #eaeaea;
}

/* 底部 */
.footer-bottom{
    width: 1000px;
    height: 35px;
    /* background-color: peru; */
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -500px;
    text-align: center;
    font-size: 12px;
}
.footer-bottom p{
    font-family: '微软雅黑';
    color: #ffffff;
    font-weight: 500;
}